home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / misc / libx11inc.lha / X11 / Xm / DrawingA.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-13  |  1.2 KB  |  54 lines

  1. /* 
  2.  * (c) Copyright 1989, 1990, 1991, 1992 OPEN SOFTWARE FOUNDATION, INC.
  3.  * ALL RIGHTS RESERVED
  4. */ 
  5. /*   $RCSfile: DrawingA.h,v $ $Revision: 1.18 $ $Date: 92/05/14 12:50:47 $ */
  6. /*
  7. *  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  8. #ifndef _XmDrawingArea_h
  9. #define _XmDrawingArea_h
  10.  
  11. #include <Xm/Xm.h>
  12.  
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16.  
  17. /* Class record constants */
  18.  
  19. externalref WidgetClass xmDrawingAreaWidgetClass;
  20.  
  21. typedef struct _XmDrawingAreaClassRec * XmDrawingAreaWidgetClass;
  22. typedef struct _XmDrawingAreaRec      * XmDrawingAreaWidget;
  23.  
  24.  
  25. #ifndef XmIsDrawingArea
  26. #define XmIsDrawingArea(w)  (XtIsSubclass (w, xmDrawingAreaWidgetClass))
  27. #endif
  28.  
  29.  
  30.  
  31. /********    Public Function Declarations    ********/
  32. #ifdef _NO_PROTO
  33.  
  34. extern Widget XmCreateDrawingArea() ;
  35.  
  36. #else
  37.  
  38. extern Widget XmCreateDrawingArea( 
  39.                         Widget p,
  40.                         String name,
  41.                         ArgList args,
  42.                         Cardinal n) ;
  43.  
  44. #endif /* _NO_PROTO */
  45. /********    End Public Function Declarations    ********/
  46.  
  47.  
  48. #ifdef __cplusplus
  49. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  50. #endif
  51.  
  52. #endif /* _XmDrawingArea_h */
  53. /* DON'T ADD ANYTHING AFTER THIS #endif */
  54.